Matplot 设置支持中文字体

Matplot 设置支持中文字体

浏览: 28评论: 0
发布时间: 2025-11-23
import matplotlib as mpl
 
mpl.rcParams['font.family'] = 'sans-serif'
mpl.rcParams['font.sans-serif'] = [
   'PingFang SC',          # macOS
   'Hiragino Sans GB',     # macOS 旧版常见
   'Microsoft YaHei',      # Windows
   'SimHei',               # Windows
   'Noto Sans CJK SC',     # Linux/mac/Win 都可能安装
   'WenQuanYi Micro Hei',  # Linux 常见
   'Arial Unicode MS'      # 兜底(可能没有)
]